home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
tableversions.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
825b
|
20 lines
/* RCSVER $Id: tableversions.sql,v 1.2 1999-02-24 16:20:49-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: tableversions.sql
* Date: 02/16/1998
* memo: Randy Wood
* Description: Create the tableversions table. This table maintains a
* version number for every farebox configuration file,
* and keeps track of the number of coloumns of each.
* Changes:
************************************************************************* */
CREATE TABLE tableversions
(
tablename VARCHAR2(30), /* Name of config file ('CDISP.FBC') */
version NUMBER(38), /* Version of file */
num_cols NUMBER(38), /* Number of columns */
CONSTRAINT pk_tableversions PRIMARY KEY (tablename)
);